home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.4 KB | 68 lines | [TEXT/MPS ] |
- //#
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _ODCTR_
- #define _ODCTR_
-
- #ifndef _REFCTOBJ_
- #include "RefCtObj.idl"
- #endif
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
- interface ODStorageSystem;
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
- interface ODContainer;
- interface ODDocument;
-
- //==============================================================================
- // ODContainer
- //==============================================================================
-
- interface ODContainer : ODRefCntObject
- {
-
- ODStorageSystem GetStorageSystem();
-
- ODContainerID GetID();
-
- ODContainerName GetName();
-
- void SetName(in ODContainerName name);
-
- ODDocument AcquireDocument(in ODDocumentID id);
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
- functionprefix = ODContainer;
- override:
- somUninit,
- Acquire,
- Release,
- Purge;
- releaseorder:
- GetStorageSystem,
- GetID,
- GetName,
- SetName,
- AcquireDocument,
- reserved1,
- reserved2,
- reserved3,
- reserved4,
- reserved5;
- };
- #endif
- };
-
-
- #endif // _ODCTR_
-
-